home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 10 - 1994 / 10.09 Sep 94 / Fez (MacHack Winner) / FezEdit ƒ / Utilities.h < prev   
Encoding:
Text File  |  1994-07-06  |  410 b   |  24 lines  |  [TEXT/MMCC]

  1. //
  2. //    Interfaces for general utilities
  3. //
  4.  
  5. #pragma once
  6.  
  7. // Constants
  8.  
  9. #ifndef NIL
  10. #define NIL ((void *)0L)
  11. #endif
  12.  
  13. #define MAXPORTSTACK    16
  14.  
  15. //    Prototypes for various public utility routines
  16.  
  17. void    PushPort(GrafPtr port);
  18. void    PopPort(void);
  19. void    LocalToGlobalRect(GrafPtr port, Rect *r);
  20. void    GlobalToLocalRect(GrafPtr port, Rect *r);
  21. void    CenterRect(Rect *r, Rect *inside, Rect *ans);
  22. void    Wait(short aBit);
  23.  
  24.